home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / NeoIntroTCL3.0 folder / TCL / NeoDemo / Includes / CNDImagePICT.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  452 b   |  24 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CNDImagePICT.h
  3.  *
  4.  *    Persistent PICT image class.
  5.   *  Copyright © 1992 NeoLogic Systems.  All rights reserved.
  6. *
  7.  ****/
  8.  
  9. #pragma once            /* Include this file only once */
  10. #include "CNDImage.h"
  11.  
  12. #define kNDImagePICTID        23
  13.  
  14. class CNDImagePICT : public CNDImage {
  15. public:
  16.                         /** Instance Methods **/
  17.     static CNeoPersist *New(void);
  18.     virtual NeoID        getClassID(void) const;
  19.  
  20.                         /** Rendering Methods **/
  21.     virtual void        draw(Rect *aRect);
  22. };
  23.  
  24.